Namespaces

Types in MathNet.Filtering.Windows

Type PermanentWindow<T>

Namespace MathNet.Filtering.Windows

Window which is remains intact even if it propagates to the next window. Still much more efficient than creating a new buffer for every window, but somewhat less efficient than the volatile window. Newest value is the first one at Offset in BufferA, the next older one at Offset+1, wrapping around at BufferA.Length to BufferB.

Constructors

Methods

Properties

Fields

Public Constructors

PermanentWindow<T>(int size, int bufferSize)

Public Methods

bool Equals(object obj)

int GetHashCode()

Type GetType()

T[] ToArray()

string ToString()

Public Properties

T Item get; set;

Public fields

int WindowSize

return int

T[] BufferA

return T[]

T[] BufferB

return T[]

int OffsetA

return int